/* * Sun Public License Notice * * The contents of this file are subject to the Sun Public License * Version 1.0 (the "License"). You may not use this file except in * compliance with the License. A copy of the License is available at * http://www.sun.com/ * * The Original Code is Forte for Java, Community Edition. The Initial * Developer of the Original Code is Sun Microsystems, Inc. Portions * Copyright 1997-2000 Sun Microsystems, Inc. All Rights Reserved. */ package org.netbeans.editor.view; /** * * @author * @version */ public class GotoDialogPanel extends javax.swing.JPanel { static final long serialVersionUID =-8686958102543713464L; /** Initializes the Form */ public GotoDialogPanel() { initComponents (); } /** This method is called from within the constructor to * initialize the form. * WARNING: Do NOT modify this code. The content of this method is * always regenerated by the FormEditor. */ private void initComponents () {//GEN-BEGIN:initComponents // This code was developed using a non-commercially licensed version of NetBeans Developer 2.x. // For details, see http://www.netbeans.com/non_commercial.html setLayout (new java.awt.GridBagLayout ()); java.awt.GridBagConstraints gridBagConstraints1; gotoLabel = new javax.swing.JLabel (); gotoLabel.setText ("Goto Line:"); // NOI18N gridBagConstraints1 = new java.awt.GridBagConstraints (); gridBagConstraints1.gridwidth = -1; gridBagConstraints1.insets = new java.awt.Insets (5, 5, 5, 5); add (gotoLabel, gridBagConstraints1); gotoCombo = new javax.swing.JComboBox (); gotoCombo.setEditable (true); gotoCombo.addActionListener (new java.awt.event.ActionListener () { public void actionPerformed (java.awt.event.ActionEvent evt) { gotoComboActionPerformed (evt); } } ); gridBagConstraints1 = new java.awt.GridBagConstraints (); gridBagConstraints1.gridwidth = 0; gridBagConstraints1.fill = java.awt.GridBagConstraints.HORIZONTAL; gridBagConstraints1.insets = new java.awt.Insets (5, 5, 5, 5); gridBagConstraints1.weightx = 1.0; add (gotoCombo, gridBagConstraints1); }//GEN-END:initComponents private void gotoComboActionPerformed (java.awt.event.ActionEvent evt) {//GEN-FIRST:event_gotoComboActionPerformed // Add your handling code here: }//GEN-LAST:event_gotoComboActionPerformed // Variables declaration - do not modify//GEN-BEGIN:variables protected javax.swing.JLabel gotoLabel; protected javax.swing.JComboBox gotoCombo; // End of variables declaration//GEN-END:variables } /* * Log * 4 Gandalf 1.3 1/13/00 Miloslav Metelka Localization * 3 Gandalf 1.2 10/23/99 Ian Formanek NO SEMANTIC CHANGE - Sun * Microsystems Copyright in File Comment * 2 Gandalf 1.1 8/17/99 Ian Formanek Generated serial version * UID * 1 Gandalf 1.0 5/16/99 Miloslav Metelka * $ */